home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / CSCea77143.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  92 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Script License for details
  5. #
  6. #
  7.  
  8.  
  9. if(description)
  10. {
  11.  script_id(11594);
  12.  script_version("$Revision: 1.3 $");
  13.  script_cve_id("CAN-2003-0258","CAN-2003-0259","CAN-2003-0260");
  14.  name["english"] = "CSCdea77143, CSCdz15393, CSCdt84906";
  15.  
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20.  
  21. The remote Cisco VPN 3000 concentrator is vulnerable to various flaws
  22. which may allow an attacker to use this device
  23. to break into a VPN, disable the remote device by sending
  24. a malformed SSH initialization packet or disable the
  25. remote device by sending a flood of malformed ICMP packets.
  26.  
  27. This vulnerability is documented with the CISCO
  28. bugs ID CSCdea77143, CSCdz15393 and CSCdt84906
  29.  
  30. Solution : http://www.cisco.com/warp/public/707/cisco-sa-20030507-vpn3k.shtml
  31. Risk factor : High
  32.  
  33. *** As Nessus solely relied on the banner of the remote host
  34. *** this might be a false positive
  35. ";
  36.  script_description(english:desc["english"]);
  37.  
  38.  summary["english"] = "Uses SNMP to determine if a flaw is present";
  39.  script_summary(english:summary["english"]);
  40.  
  41.  script_category(ACT_GATHER_INFO);
  42.  
  43.  script_copyright(english:"This script is (C) 2003 Renaud Deraison");
  44.  
  45.  script_family(english:"CISCO");
  46.  
  47.  script_dependencie("snmp_sysDesc.nasl",
  48.              "snmp_cisco_type.nasl");
  49.  script_require_keys("SNMP/community",
  50.               "SNMP/sysDesc",
  51.               "CISCO/model");
  52.  exit(0);
  53. }
  54.  
  55.  
  56. # The code starts here
  57. ok=0;
  58. os = get_kb_item("SNMP/sysDesc"); if(!os)exit(0);
  59. hardware = get_kb_item("CISCO/model"); if(!hardware)exit(0);
  60.  
  61.  
  62.  
  63. # Check for the required hardware...
  64. #----------------------------------------------------------------
  65. # catalyst.*
  66. if(ereg(string:hardware, pattern:"^catalyst.*$"))ok=1;
  67.  
  68. if(!ok)exit(0);
  69. ok = 0;
  70.  
  71.  
  72. # Check for the required operating system...
  73. #----------------------------------------------------------------
  74. # Is this CatOS ?
  75.  
  76. if(!egrep(pattern:".*Cisco Catalyst Operating System.*", string:os))exit(0);
  77. # 3.0, 3.1 and 3.5 are vulnerable
  78. if(egrep(string:os, pattern:"3\.[015].*,"))ok=1;
  79.  
  80.  
  81. # 3.6.x fixed in 3.6.7
  82. if(egrep(string:os, pattern:"3\.6\.[0-6][^0-9].*,"))ok=1;
  83. if(egrep(string:os, pattern:"3\.6\.7[A-E].*,"))ok=1;
  84.  
  85.  
  86. # 4.x -> fixed in 4.0.1
  87. if(egrep(string:os, pattern:"4\.0(\.0)?.*,"))ok=1;
  88.  
  89.  
  90.  
  91. if(ok)security_hole(port:161, proto:"udp");
  92.